home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Science / Gnuplot 3.5 / docs / latextut / Makefile.in < prev    next >
Makefile  |  1993-11-03  |  759b  |  48 lines

  1. # Makefile for gnuplot LaTeX tutorial
  2. # To make the manual from scratch, we run latex two times
  3.  
  4. .NOEXPORT:
  5. SHELL = /bin/sh
  6.  
  7. srcdir = @srcdir@
  8. VPATH = @srcdir@
  9.  
  10. prefix = /usr/local
  11. exec_prefix = $(prefix)
  12. bindir = $(exec_prefix)/bin
  13. datadir = $(prefix)/lib
  14. mandir = $(prefix)/man
  15.  
  16. all: tutorial.dvi done
  17.  
  18. done:
  19.     latex tutorial
  20.     echo > done
  21.  
  22. # To touch it up after changes:
  23. remake: tutorial.dvi
  24.  
  25. # Always runs latex, e.g., to get labels right
  26. force:
  27.     latex tutorial
  28.  
  29. tutorial.dvi: eg1.tex eg2.tex eg3.tex eg4.tex eg5.tex eg6.tex linepoin.tex \
  30.     tutorial.tex header.tex
  31.     latex tutorial
  32.     rm -f done
  33.  
  34. .SUFFIXES: .tex .plt
  35.  
  36. .plt.tex:
  37.     gnuplot $<
  38.  
  39. clean:
  40.     rm -f *.log eg?.tex linepoin.tex
  41.  
  42. mostlyclean: clean
  43.  
  44. distclean: clean
  45.     rm -f Makefile
  46.  
  47. realclean: distclean
  48.